0x55aa
← Back to Blog

#"optimization"

9 articles tagged with ""optimization""

"devops""ci-cd""github-actions"
10 min read

GitHub Actions Cache: Stop Reinstalling the Same npm Packages 50 Times a Day ⚡

Your CI pipeline downloads 400MB of node_modules on every single push. I've set up GitHub Actions for dozens of projects, and actions/cache alone cut our CI times from 8 minutes to 90 seconds. Here's exactly how.

Mar 19, 2026
"rust""systems-programming""performance"
8 min read

Rust Cargo Features: The Feature Flags That Actually Delete Code 🦀🎛️

In Laravel I toggled features with .env files at runtime. In Rust, you toggle features at compile time — and the disabled code literally doesn't exist in your binary. Coming from web dev, this broke my brain in the best possible way.

Mar 19, 2026
"devops""github-actions""ci-cd"
5 min read

GitHub Actions Caching: Cut Your CI Time in Half (Seriously) ⚡🗂️

Your CI pipeline takes 15 minutes to run but only does 30 seconds of real work? After watching too many progress bars spin on dependency installs, I learned how to cache everything in GitHub Actions — and you should too.

Mar 18, 2026
"devops""docker""ci-cd"
6 min read

Docker Layer Caching: Turn 8-Minute Builds Into 30-Second Ones 🚀🐳

Every time you push code and wait 8 minutes for Docker to rebuild from scratch, a kitten cries. Learn how Docker layer caching actually works - and the one ordering mistake that's killing your CI/CD pipeline.

Mar 17, 2026
"aws""serverless""lambda"
8 min read

AWS Lambda Layers: Stop Shipping node_modules Into Every Single Function 📦⚡

If you're copy-pasting the same utility code and npm packages across 30 Lambda functions, your deployment zips are a disaster and your sanity is next. Lambda Layers fix this — here's everything I wish I knew earlier.

Mar 16, 2026
"rust""systems-programming""performance"
9 min read

Rust SIMD: Eight Calculations for the Price of One 🦀⚡

I spent years writing loops that processed one number at a time. Turns out your CPU has been laughing at me this whole time — it can do 8 calculations simultaneously. Rust lets you use that power without losing your mind.

Mar 15, 2026
"rust""performance""optimization"
10 min read

Rust Performance: Actually Measuring What 'Blazingly Fast' Means 🦀⚡

Coming from 7 years of Laravel/Node.js where 'fast enough' was the mantra, I thought performance optimization meant adding cache layers and hoping. Then Rust forced me to actually measure, benchmark, and prove performance claims. Turns out 'blazingly fast' isn't marketing - it's measurable!

Feb 10, 2026
"devops""docker""deployment"
15 min read

Docker Multi-Stage Builds: Stop Shipping Your Entire Dev Environment to Production 🐳✂️

Your Docker image is 2GB and takes 10 minutes to deploy? After countless production deployments, I learned that multi-stage builds can shrink images by 90% - here's how to stop shipping garbage to production!

Feb 06, 2026
"rust""performance""systems-programming"
9 min read

Rust's Zero-Cost Abstractions: Have Your Cake and Eat It Too 🦀🍰

Write code like Python, get performance like C. Sounds too good to be true? Welcome to Rust's zero-cost abstractions - where elegance meets speed!

Jan 22, 2026